Weapon Table Recipes
info
The Weapon Table can only be used by Hunter Player that have unlocked the Weapon Table skill.
Shaped or shapeless recipes can be made for the Weapon Table.
Shaped Recipe
shaped_recipe.json
{
"type": "vampirism:shaped_crafting_weapontable",
"pattern": [],
"key": {},
"result": {
"item": "",
"count": int,
"nbt:": {},
},
"lava": int,
"skill": [],
"level": int
}
type
: The type of recipe isvampirism:shaped_crafting_weapontable
for shaped weapon table recipes.pattern
: The 4x4 pattern of the recipe. Just like the shaped crafting table recipe, but supports a crafting matrix up to 4x4.key
: The key dictionary for the pattern. Just like the shaped crafting table keys.result
: The result of the recipe.lava
: The amount of lava the crafting consumes. Default is 0. Randing from 0 to 5.skill
: The skills the recipe requires. String array of skill registry ids.level
: The faction level the recipe requires. Default is 1.
Shapeless Recipe
shapeless_recipe.json
{
"type": "vampirism:shapeless_crafting_weapontable",
"ingredients": [],
"result": {
"item": "",
"count": int,
"nbt:": {},
},
"lava": int,
"skill": [],
"level": int
}
type
: The type of recipe isvampirism:shapeless_crafting_weapontable
for shapeless weapon table recipes.ingredients
: The ingredients of the recipe. Just like the shapeless crafting table recipe.result
: The result of the recipe.lava
: The amount of lava the crafting consumes. Default is 0. Randing from 0 to 5.skill
: The skills the recipe requires. String array of skill registry ids.level
: The faction level the recipe requires. Default is 1.